Answer:

Yes.

Prefix Increment Operator

The increment operator ++ can be put in front of a variable. When this is done, it is a prefix operator. When it is put behind a variable it is a postfix operator. Both ways increment the variable. However:

++counter means increment the value before using it.
 
counter++ means increment the value after using it.

When the increment operator is used as part of an arithmetic expression you must distinguish between prefix and postfix operators.

int sum = 0;
int counter = 10;

sum = ++counter ;

System.out.println("sum: "+ sum " + counter: " + counter );

This program fragment will print:

sum: 11  counter: 11 

This fragment requires careful inspection:

The Java AP Examination does not test students on using the prefix operator for any purpose (not even to increment an isolated variable).

QUESTION 6:

Inspect the following code:

int x = 99;
int y = 10;

y = ++x ; // prefix increment operator

System.out.println("x: " + x + "  y: " + y );

What does this fragment write out?